home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig19_03.jar / Ch19 / Fig19_03 / fig19_03.cpp
C/C++ Source or Header  |  1997-11-01  |  343b  |  17 lines

  1. // Fig. 19.3: fig19_03.cpp
  2. // Demonstrating function substr
  3. #include <iostream>
  4. #include <string>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.    string s( "The airplane flew away." );
  10.  
  11.    // retrieve the substring "plane" which
  12.    // begins at subscript 7 and consists of 5 elements
  13.    cout << s.substr( 7, 5 ) << endl;
  14.  
  15.    return 0;
  16. }
  17.